home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Resources
/
Chat & Communication
/
Digsby build 37
/
digsby_setup.exe
/
lib
/
email
/
mime
/
text.pyo
(
.txt
)
< prev
Wrap
Python Compiled Bytecode
|
2008-10-13
|
726b
|
17 lines
# Source Generated with Decompyle++
# File: in.pyo (Python 2.5)
__all__ = [
'MIMEText']
from email.encoders import encode_7or8bit
from email.mime.nonmultipart import MIMENonMultipart
class MIMEText(MIMENonMultipart):
def __init__(self, _text, _subtype = 'plain', _charset = 'us-ascii'):
MIMENonMultipart.__init__(self, 'text', _subtype, **{
'charset': _charset })
self.set_payload(_text, _charset)